home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K TCPIP Sec 2.xpl < prev    next >
Text File  |  2002-03-10  |  2KB  |  60 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="2"
  4. "UIPATH"="Network\TCP/IP Hardening
  5. "NAME"="SYN Attack Protection Triggers"
  6. "OSVERSION"="0001011"
  7. "WARNING"="1"
  8. "VERSION"="1.11"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="SYN Trigger"
  11. "TEXT 2"="Retried Trigger"
  12. "DESCRIPTION 1"="These triggers control when SYN Attack Protection should beginn to work."
  13. "DESCRIPTION 2"="The first trigger controls how many SYN requests should be allowed before SYN Attack Protection begins to operate."
  14. "DESCRIPTION 3"="The second trigger controls how many unsuccessfully retries (at least one) should be allowed for SYN requests before SYN Attack Protection begins to operate. Please note: The trigger does not specify how many TIMES a SYN retry should take place, but how many retried SYN requests at one time are allowed!"
  15. "DESCRIPTION 4"="There is no "best use" values for these settings but a unsuccessfully SYN request is very, very rare so the second trigger should be really low."
  16. "DESCRIPTION 5"="The default setting for the first trigger is 100 (500 for Advanced Server) and for the second trigger 80 (400 for Advanced Server)."
  17. "DESCRIPTION 6"="To restore the default value, clear the fields."
  18. "DESCRIPTION 7"="For more information about TCP/IP Hardening, see http://www.winnetmag.com/articles/index.cfm?articleid=23918"
  19. "AUTHOR"="Xteq Systems"
  20. "CONTACTURL"="http://www.xteq.com/"
  21. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  22. "COMMENT 1"=" "
  23.  
  24.  
  25. sP1="HKLM\System\CurrentControlSet\Services\TcpIp\Parameters\TcpMaxHalfOpen"
  26. sP2="HKLM\System\CurrentControlSet\Services\TcpIp\Parameters\TcpMaxHalfOpenRetried"
  27.  
  28. Sub Plugin_Initialize 
  29.  s=RegReadValue(sP1)
  30.  SetUIElement 1,s
  31.  
  32.  s=RegReadValue(sP2)
  33.  SetUIElement 2,s
  34. End Sub
  35.  
  36. Sub Plugin_CheckData(ElementIndex)
  37. End Sub
  38.  
  39. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  s=GetUIElement(1)
  41.  if len(s)=0 then
  42.     If RegValueExists(sP1) then RegDeleteValue(sP1)
  43.  else
  44.     Call RegWriteValue(sP1,s,2)
  45.  end if
  46.  
  47.  s=GetUIElement(2)
  48.  if len(s)=0 then
  49.     If RegValueExists(sP2) then RegDeleteValue(sP2)
  50.  else
  51.     Call RegWriteValue(sP2,s,2)
  52.  end if
  53.  
  54.  
  55.  Call Restart()
  56. End Sub
  57.  
  58. Sub Plugin_Terminate 
  59. End Sub
  60.